AlarmItem.DynPropertiesEnum[GET]



DynPropertiesEnum(bsPath As String) As Variant

Parameters

bsPath As String
A String which defines the entry point to get out all available properties of the object.

A blank String like that returns the first layer of properties:

DynPropertiesEnum("")


ED
read only
RT
read only

Remarks

Returns a StringArray of all Dynproperties available for this Object.

Example how to call this method:


Sub ReadDynProps()

	Dim vProps As Variant

	Dim i As Integer

	'get all DynProperties of the actual object (DynPicture, Element, ...)

	vProps = zenOnObject.DynPropertiesEnum("")

	'Print informations of DynProperties into output window

	For i = 0 To UBound(vProps)

		Debug.Print vProps(i)

	Next i

End Sub

See Also

AlarmItem